home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / cross / ava-0.2.5.lha / ava-0.2.5 / doc / Makefile < prev   
Encoding:
Makefile  |  1999-03-23  |  575 b   |  30 lines

  1. # AVA
  2. # User's Manual
  3. # Uros Platise (c) 1999
  4. #
  5. # Check directory before installation!
  6. #
  7. # To compile you need full tex distribution and latex2html converter.
  8. #
  9. # To compile type: make
  10. # To install type: make install
  11.  
  12.     DOC_DIR    = /usr/doc/uTools/ava
  13.  
  14. all:    ava.ps
  15.  
  16. ava.dvi:    ava.tex
  17.         latex ava.tex
  18.  
  19. ava.ps:    ava.dvi
  20.         dvips ava.dvi -o
  21.  
  22. #html:         ava.tex
  23. #    export ICONSERVER=../../icons
  24. #    latex2html -index_in_navigation -show_section_numbers -font_size 11pt -info "" -html_version 3.1 -split 3 ava
  25.  
  26. install:
  27.     mkdir -r $(DOC_DIR)
  28.     cp ava.ps $(DOC_DIR)
  29. #    cp -r ava $(DOC_DIR)/html
  30.